home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-17 | 603 b | 30 lines | [TEXT/ToyS] |
-
- property idletime : 10 * 60 -- number of seconds between runs
- property opentime : 2 * 60 -- seconds to await link open
- property mailtime : 5 * 60 -- seconds for mail check
-
- on idle
- try
- tell application "PPPop2"
- connect
- with timeout of opentime seconds
- repeat until (PPP up)
- end repeat
- end timeout -- will go to error if not open
- end tell
-
- with timeout of mailtime seconds
- tell application "Eudora Pro 4.0" to connect with sending and checking
- activate
- end timeout
-
- tell application "PPPop2" to disconnect
-
- on error
- beep
- end try
-
- return idletime
-
- end idle
-